inherited TextWeightItemDialog: TTextWeightItemDialog Caption = 'Line Weight' ClientHeight = 151 ClientWidth = 329 OnCreate = FormCreate OnShow = FormShow PixelsPerInch = 96 TextHeight = 13 object FindTextLbl: TUiLabel Left = 8 Top = 8 Height = 13 Caption = '&Text matching:' FocusControl = FindTextEdit end object PriorityLbl: TUiLabel Left = 256 Top = 8 Height = 13 Caption = 'Priority:' FocusControl = PriorityEdit end object FindTextEdit: TUiEdit Left = 8 Top = 24 Width = 241 Height = 21 TabOrder = 0 OnChange = SomethingChangedClick end object PriorityEdit: TUiComboBox Left = 256 Top = 24 Width = 65 Height = 21 Style = csDropDownList ItemHeight = 13 TabOrder = 1 OnChange = SomethingChangedClick end object CaseSensitiveEdit: TUiCheckBox Left = 8 Top = 56 Height = 17 Caption = 'Match character &case' TabOrder = 2 OnClick = SomethingChangedClick end object WholeWordsEdit: TUiCheckBox Left = 8 Top = 76 Height = 17 Caption = '&Whole words only' TabOrder = 3 OnClick = SomethingChangedClick end object IsRegExpEdit: TUiCheckBox Left = 8 Top = 96 Height = 17 Caption = 'Regular e&xpression' TabOrder = 4 OnClick = SomethingChangedClick end object OkBtn: TUiButton Left = 168 Top = 120 Caption = 'OK' Default = True ModalResult = 1 TabOrder = 5 AutoSize = asRight end object CancelBtn: TUiButton Left = 248 Top = 120 Cancel = True Caption = 'Cancel' ModalResult = 2 TabOrder = 6 AutoSize = asRight end end